home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-09-07 | 478 b | 34 lines |
- #
- # MakeFile for sysinfo.library/test
- #
- # This file is public domain.
- #
- # Author: Petri Nordlund <petrin@mits.mdata.fi>
- #
- # $Id: MF.compile 1.1 1995/05/28 00:02:14 petrin Exp petrin $
- #
-
- CFLAGS = $(BUILD_GCC_OPT)
-
-
- SHELL = USR:BIN/sh
-
- # Source files
- SRCS = test.c
-
- # Object files
- OBJS = $(SRCS:.c=.o)
-
- PROG = test
-
- all : $(PROG)
-
- $(PROG) : test.o
- gcc $(CFLAGS) -o $(PROG) $^ -lamiga -lauto -lsysinfo
-
- test.o : test.c
- gcc $(CFLAGS) -c test.c
-
- clean:
- -delete test test.o
-